home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / ch_3.1 / xconv / xconv.h < prev    next >
C/C++ Source or Header  |  1999-09-11  |  742b  |  43 lines

  1. /* 
  2.  * xph.h
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
  7.  */
  8.  
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <math.h>
  12. #include <malloc.h>
  13.  
  14. #include "ip.h"
  15.  
  16. #define    N_VERTEX    46L            /* number of distinct curv pts */
  17. #define    X_ORG        500
  18. #define    Y_ORG        140
  19. #define    N_MOM        15
  20.  
  21. #define    SQ2        1.414213562
  22.  
  23. #define    NA_MAX        128             /* max no allowed vertices in ph.c */
  24.  
  25. #define    ON        1
  26. #define    OFF        0
  27. #undef    ECHO_INPUT
  28.  
  29. #define    DISPL_PAGE    1
  30. #define    RESET        ON
  31. #define    EVAL_MOM    ON
  32.  
  33. #define    DEBUG
  34. #undef    DBG_MEM
  35.  
  36. /*
  37.  * Function prototypes
  38.  */
  39. extern int main (int, char **);
  40. extern void usage (char *);
  41. Matrix *readFilter (char *);
  42. Matrix *genGaussFilter (char *filterLenStr);
  43.